home *** CD-ROM | disk | FTP | other *** search
/ Print & Paint Power / Print & Paint Power.iso / hitech / cdc.bat next >
DOS Batch File  |  1994-08-01  |  391b  |  32 lines

  1. echo off
  2. getop nojoy
  3. goto split
  4. :top
  5. getop arg:1 nojoy
  6. :split
  7. if ERRORLEVEL 5 goto show
  8. if ERRORLEVEL 4 goto help
  9. if ERRORLEVEL 3 goto color
  10. if ERRORLEVEL 2 goto pro
  11. if ERRORLEVEL 1 goto paint
  12. goto exit
  13. :pro
  14. call proplus
  15. goto top
  16. :paint
  17. call paint
  18. goto top
  19. :color
  20. call color
  21. goto top
  22. :help
  23. call help
  24. goto top
  25. :show
  26. call clip
  27. goto top
  28. :exit
  29. echo That is all.
  30.  
  31.  
  32.